home *** CD-ROM | disk | FTP | other *** search
- overSound = new Sound(this);
- overSound.attachSound("btnOver");
- loadBar_mc._width = 0;
- hitVal = 0;
- var Plink;
- hit_mc.onRollOver = function()
- {
- this.colorTo(16770048,0,"easeOutSine");
- name_txt.colorTo(0,0,"easeOutSine");
- arrow_txt.colorTo(16711680,0,"easeOutSine");
- overSound.start();
- };
- hit_mc.onRollOut = function()
- {
- if(hitVal == 0)
- {
- this.colorTo(0,0.4,"easeOutSine");
- name_txt.colorTo(16777215,0.4,"easeOutSine");
- }
- else
- {
- this.colorTo(0,0.4,"easeOutSine");
- name_txt.colorTo(16770048,0.4,"easeOutSine");
- }
- arrow_txt.colorTo(16777215,0.4,"easeOutSine");
- };
- hit_mc.onRelease = hit_mc.onReleaseOutside = function()
- {
- function stall()
- {
- _root.loadImage(PNum);
- }
- _root.downloadCount_var = PNum;
- _root.brandEnabler("button" + PNum + "_mc");
- _root.loadIntoMe_mc.colorTo(0,0.3,"easeInQuad");
- _root.loadIntoMe_mc.onTweenComplete = stall;
- };
-